-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve test delays #1013
Improve test delays #1013
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
7 failed tests on run #546 ↗︎
Details:
Review all test suite changes for PR #1013 ↗︎ |
….0 (#962) Bumps [newrelic/deployment-marker-action](https://github.com/newrelic/deployment-marker-action) from 2.2.0 to 2.5.0. - [Release notes](https://github.com/newrelic/deployment-marker-action/releases) - [Changelog](https://github.com/newrelic/deployment-marker-action/blob/main/CHANGELOG.md) - [Commits](newrelic/deployment-marker-action@v2.2.0...v2.5.0) --- updated-dependencies: - dependency-name: newrelic/deployment-marker-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@annarhughes timeouts don't affect run time like cy.wait. I think they are pretty safe and don't actually cause delays. They just tell the app to wait a bit longer than the default wait time which i think is 4 seconds. It mades the tests less flakey. However, it probably allows the tests to run slower than we'd like. I wonder how we could make the tests run faster meaning we can eventually remove the timeouts. There are various solutions in this article. |
What changes did you make?
Quick test to see if test delays can be reduced
Why did you make the changes?
Our tests currently take a long time to complete and we have many waits that may not be necessary. testing the theory that some can be removed or reduced